{% extends 'base.html' %} {% load site_tags %} {% block title %}Enroll — {{ course.title }}{% endblock %} {% block content %}
Back to course

Confirm enrollment

You’re enrolling in {{ course.title }}. Please confirm your education background before continuing.

{{ course.title }}
{% if course.price == 0 %}Free{% else %}{% format_price course.price %}{% endif %} {% if course.category %} · {{ course.category.name }}{% endif %}

Education background *

{% csrf_token %}
{{ form.qualification }} {% if form.qualification.errors %}
{{ form.qualification.errors.0 }}
{% endif %}
{{ form.last_degree }} {% if form.last_degree.errors %}
{{ form.last_degree.errors.0 }}
{% endif %}
{{ form.age }} {% if form.age.errors %}
{{ form.age.errors.0 }}
{% endif %}
{{ form.work_experience }} {% if form.work_experience.errors %}
{{ form.work_experience.errors.0 }}
{% endif %}
{% endblock %}